Skip to main content

Delete Backup

This API deletes an existing backup identified by its unique ID. Once deleted, the backup can no longer be accessed or restored.

Endpoint Details

URL/v1/backup/id
MethodDELETE
AuthorizationBearer Token

Request Headers

HeaderTypeDescription
Content-TypeStringMust be application/json

Request Path

To delete a specific backup, use the following request format:

/v1/backup/5fdf1e60-7575-4412-8bc3-3724bf3bb87b

Path Parameter

ParameterTypeDescription
idUUIDUnique identifier of the backup to delete

Response

Here is an example response after the request has been successfully processed:

Response
{
"success": true
}

Field Descriptions

FieldTypeDescription
successBooleanIndicates whether the backup was successfully deleted

info
  • A valid Bearer Token is required to access this endpoint.
  • The id path parameter must reference an existing backup.
  • Deleting a backup is permanent and cannot be undone. The backup file can no longer be restored afterwards.